home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / alib / csup / intuition_support / setwindowpointer.c < prev   
Encoding:
C/C++ Source or Header  |  1994-02-19  |  285 b   |  19 lines

  1.  
  2. /* Intuition tag call */
  3.  
  4. #include <exec/types.h>
  5. #include <clib/intuition_protos.h>
  6.  
  7. #ifndef HYPER
  8. #define HYPER
  9. #endif
  10.  
  11. typedef struct TagItem     TagItem;
  12.  
  13. void 
  14. HYPER ## SetWindowPointer( struct Window *win, unsigned long tag1, ... )
  15. {
  16.     SetWindowPointerA(win, (TagItem *)&tag1 );
  17. }
  18.  
  19.